home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / ConsoleKit / scripts / ck-system-stop < prev   
Encoding:
Text File  |  2009-04-24  |  191 b   |  13 lines

  1. #!/bin/sh
  2.  
  3. #Try for common tools
  4. if [ -x "/sbin/shutdown" ] ; then
  5.     /sbin/shutdown -h now
  6.     exit $?
  7. elif [ -x "/usr/sbin/shutdown" ] ; then
  8.     /usr/sbin/shutdown -h now
  9.     exit $?
  10. else
  11.     exit 1
  12. fi
  13.